.section {
  height: 100vh;
  scroll-snap-align: start;
  margin: 0;
  padding: 0;
}
body {
  text-align: center;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}


#navbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
  font-family: "Roboto", sans-serif;
  gap: 32px;
  z-index: 5;
}

.navknapper {
  float: none;
  display: inline-block;
  font-size: 14px;
  color: #1e293b;
  text-align: center;
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 6px;
}

.navknapper:hover {
  color: #57a3f5;
  transform: translateY(-2px);
}

#kontaktknapp {
  background-color: white;
  color: #57a3f5;
  position: absolute;
  right: 20px;
  top: 25px;
  font-size: 14px;
  text-align: center;
  padding: 0px 16px;
  border: 2px solid #57a3f5;
  border-radius: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s, transform 0.4s ease-in-out;
}

#kontaktknapp:hover {
  background-color: #57a3f5;
  color: white;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

#title {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 35px;
  margin-top: 120px;
  margin-bottom: -5px;
}

#skrift {
  font-size: 17px;
}

#omossknapp {
  color: #57a3f5;
}